@charset "UTF-8";

/* CSS Reset and Base Styles */
* {
	box-sizing: border-box;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

body {
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	font-weight: 300;
	line-height: 1.6;
    background-image: linear-gradient(#ffe700, #ffe700, #ffe700, #ffe700, #ffe700, #ffe700, #c4d600);
    background-attachment: fixed;
    background-size: cover;
    color: #333;
}

/* Container */
.container {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
padding: 15vh 2rem 2rem;
    min-height: 30vh;
}

.content {
	display: flex;
	flex-direction: column;
	align-items: center;
	max-width: 90%;
}

#logo {
	width: min(280px, 35vw);
	height: auto;
}

/* Scrolling Content */
.scroll-container {
    padding: 2rem;
}

.scroll-section {
    max-width: 800px;
    margin: 0 auto 4rem auto;
    text-align: center;
}

.scroll-section:last-child {
    margin-bottom: 0;
}

.scroll-section h2 {
    font-size: 2rem;
    color: #be811b;
    margin-bottom: 1rem;
}

.scroll-section ul {
    list-style: none;
    padding: 0;
}

.scroll-section li {
    margin-bottom: 0.5rem;
}

.scroll-section a {
    color: #be811b;
    text-decoration: none;
    font-weight: 500;
}

#contact a {
    color: #333;
    font-weight: 300;
}

.scroll-section a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
	color: white;
	text-align: center;
	padding: 2rem 1rem;
}

.footer h4 {
	margin: 0;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.05em;
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
	.container {
		padding: 1rem;
	}

    .scroll-container {
        padding: 2rem 1rem;
    }
}
